home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / mozilla-firefox / include / dom / nsIDOMGetSVGDocument.h < prev    next >
C/C++ Source or Header  |  2006-05-08  |  2KB  |  92 lines

  1. /*
  2.  * DO NOT EDIT.  THIS FILE IS GENERATED FROM nsIDOMGetSVGDocument.idl
  3.  */
  4.  
  5. #ifndef __gen_nsIDOMGetSVGDocument_h__
  6. #define __gen_nsIDOMGetSVGDocument_h__
  7.  
  8.  
  9. #ifndef __gen_domstubs_h__
  10. #include "domstubs.h"
  11. #endif
  12.  
  13. /* For IDL files that don't want to include root IDL files. */
  14. #ifndef NS_NO_VTABLE
  15. #define NS_NO_VTABLE
  16. #endif
  17. class nsIDOMSVGDocument; /* forward declaration */
  18.  
  19.  
  20. /* starting interface:    nsIDOMGetSVGDocument */
  21. #define NS_IDOMGETSVGDOCUMENT_IID_STR "0401f299-685b-43a1-82b4-ce1a0011598c"
  22.  
  23. #define NS_IDOMGETSVGDOCUMENT_IID \
  24.   {0x0401f299, 0x685b, 0x43a1, \
  25.     { 0x82, 0xb4, 0xce, 0x1a, 0x00, 0x11, 0x59, 0x8c }}
  26.  
  27. class NS_NO_VTABLE nsIDOMGetSVGDocument : public nsISupports {
  28.  public: 
  29.  
  30.   NS_DEFINE_STATIC_IID_ACCESSOR(NS_IDOMGETSVGDOCUMENT_IID)
  31.  
  32.   /* nsIDOMSVGDocument getSVGDocument (); */
  33.   NS_IMETHOD GetSVGDocument(nsIDOMSVGDocument **_retval) = 0;
  34.  
  35. };
  36.  
  37. /* Use this macro when declaring classes that implement this interface. */
  38. #define NS_DECL_NSIDOMGETSVGDOCUMENT \
  39.   NS_IMETHOD GetSVGDocument(nsIDOMSVGDocument **_retval); 
  40.  
  41. /* Use this macro to declare functions that forward the behavior of this interface to another object. */
  42. #define NS_FORWARD_NSIDOMGETSVGDOCUMENT(_to) \
  43.   NS_IMETHOD GetSVGDocument(nsIDOMSVGDocument **_retval) { return _to GetSVGDocument(_retval); } 
  44.  
  45. /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
  46. #define NS_FORWARD_SAFE_NSIDOMGETSVGDOCUMENT(_to) \
  47.   NS_IMETHOD GetSVGDocument(nsIDOMSVGDocument **_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSVGDocument(_retval); } 
  48.  
  49. #if 0
  50. /* Use the code below as a template for the implementation class for this interface. */
  51.  
  52. /* Header file */
  53. class nsDOMGetSVGDocument : public nsIDOMGetSVGDocument
  54. {
  55. public:
  56.   NS_DECL_ISUPPORTS
  57.   NS_DECL_NSIDOMGETSVGDOCUMENT
  58.  
  59.   nsDOMGetSVGDocument();
  60.  
  61. private:
  62.   ~nsDOMGetSVGDocument();
  63.  
  64. protected:
  65.   /* additional members */
  66. };
  67.  
  68. /* Implementation file */
  69. NS_IMPL_ISUPPORTS1(nsDOMGetSVGDocument, nsIDOMGetSVGDocument)
  70.  
  71. nsDOMGetSVGDocument::nsDOMGetSVGDocument()
  72. {
  73.   /* member initializers and constructor code */
  74. }
  75.  
  76. nsDOMGetSVGDocument::~nsDOMGetSVGDocument()
  77. {
  78.   /* destructor code */
  79. }
  80.  
  81. /* nsIDOMSVGDocument getSVGDocument (); */
  82. NS_IMETHODIMP nsDOMGetSVGDocument::GetSVGDocument(nsIDOMSVGDocument **_retval)
  83. {
  84.     return NS_ERROR_NOT_IMPLEMENTED;
  85. }
  86.  
  87. /* End of implementation class template. */
  88. #endif
  89.  
  90.  
  91. #endif /* __gen_nsIDOMGetSVGDocument_h__ */
  92.